home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / vpe_130 / c / colors.h next >
C/C++ Source or Header  |  1996-09-15  |  1KB  |  48 lines

  1. //
  2. //    COLORS.H
  3. //    ========
  4. //
  5. //    Color-Definitions
  6. //
  7. // 01/1995 by IDEAL Software, T. Radde
  8. //
  9.  
  10.  
  11.  
  12. #ifndef _MODULE_COLORS
  13. #define _MODULE_COLORS
  14.  
  15.  
  16. #include <windows.h>
  17.  
  18.  
  19.  
  20.  
  21. // =========================================================================
  22. //             Color-Definitions
  23. // =========================================================================
  24. #define COLOR_BLACK     RGB(0, 0, 0)
  25. #define COLOR_DKGRAY    RGB(128, 128, 128)
  26. #define COLOR_GRAY      RGB(192, 192, 192)
  27. #define COLOR_LTGRAY    RGB(230, 230, 230)
  28. #define COLOR_WHITE     RGB(255, 255, 255)
  29. #define COLOR_DKRED     RGB(128, 0, 0)
  30. #define COLOR_RED       RGB(192, 0, 0)
  31. #define COLOR_LTRED     RGB(255, 0, 0)
  32. #define COLOR_DKGREEN   RGB(0, 128, 0)
  33. #define COLOR_GREEN     RGB(0, 192, 0)
  34. #define COLOR_LTGREEN   RGB(0, 255, 0)
  35. #define COLOR_BLUEGREEN RGB(0, 128, 128)
  36. #define COLOR_OLIVE     RGB(128, 128, 0)
  37. #define COLOR_DKBLUE    RGB(0, 0, 128)
  38. #define COLOR_BLUE      RGB(0, 0, 255)
  39. #define COLOR_CYAN      RGB(0, 255, 255)
  40. #define COLOR_DKPURPLE  RGB(128, 0, 128)
  41. #define COLOR_PURPLE    RGB(192, 0, 192)
  42. #define COLOR_MAGENTA   RGB(255, 0, 255)
  43. #define COLOR_LTYELLOW  RGB(255, 255, 0)
  44.  
  45.  
  46. #endif         // _MODULE_COLORS
  47.  
  48.